home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 July: Mac OS SDK / Dev.CD Jul 97 SDK1.toast / Development Kits (Disc 1) / QuickDraw 3D / Samples / SampleCode / Unsupported Libraries / Error_MesgLib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-21  |  686 b   |  38 lines  |  [TEXT/MPS ]

  1. /******************************************************************************
  2.  **        
  3.  **     Module:        Error_Lib.h                                                
  4.  **     
  5.  **     
  6.  **     Purpose:                                                              
  7.  **     
  8.  **     
  9.  **     Copyright (C) 1992, 1995 Apple Computer, Inc.  All rights reserved.
  10.  **     
  11.  **     
  12.  *****************************************************************************/
  13. #ifndef Error_MesgLib_h
  14. #define Error_MesgLib_h
  15.  
  16. #if PRAGMA_ONCE
  17.     #pragma once
  18. #endif
  19.  
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif    /* __cplusplus */
  23.  
  24. char *getErrorString(
  25.     long errorID);
  26.     
  27. char *getWarningString(
  28.     long errorID);
  29.  
  30. char *getNoticeString(
  31.     long errorID);
  32.  
  33. #ifdef __cplusplus
  34. }
  35. #endif    /* __cplusplus */
  36.  
  37. #endif /* Error_MesgLib_h */
  38.